
    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_1d17ed3f8cd2a71276825058.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_3d0303ffe111e95df76a23d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4c36e134470e5273ad07de04.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_edcd1c91dd112f870b0b00a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4df3f86944d5a6ecc437cf01.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e615f31ea7ec83afc7508de4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934000;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls1f{letter-spacing:-3.600000px;}
.ls57{letter-spacing:-2.880000px;}
.ls58{letter-spacing:-2.460000px;}
.ls59{letter-spacing:-2.340000px;}
.ls56{letter-spacing:-1.620000px;}
.ls5a{letter-spacing:-1.500000px;}
.ls1b{letter-spacing:-1.296000px;}
.ls18{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.540000px;}
.ls60{letter-spacing:-0.528000px;}
.ls1e{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.360000px;}
.ls5b{letter-spacing:-0.330000px;}
.ls16{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls62{letter-spacing:-0.264000px;}
.ls30{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.168000px;}
.ls27{letter-spacing:-0.144000px;}
.ls5f{letter-spacing:-0.132000px;}
.ls50{letter-spacing:-0.120000px;}
.ls19{letter-spacing:-0.072000px;}
.ls61{letter-spacing:-0.066000px;}
.ls4d{letter-spacing:-0.060000px;}
.lsd{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.060000px;}
.ls3b{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.120000px;}
.ls48{letter-spacing:0.126000px;}
.ls2f{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.216000px;}
.ls4e{letter-spacing:0.240000px;}
.ls28{letter-spacing:0.280800px;}
.ls1d{letter-spacing:0.288000px;}
.ls44{letter-spacing:0.300000px;}
.ls3a{letter-spacing:0.302400px;}
.ls5d{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls5e{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.403200px;}
.lsb{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.439200px;}
.ls5c{letter-spacing:0.462000px;}
.ls22{letter-spacing:0.475200px;}
.ls2b{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.482400px;}
.ls7{letter-spacing:0.504000px;}
.ls47{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.648000px;}
.ls2e{letter-spacing:0.720000px;}
.ls46{letter-spacing:0.780000px;}
.ls31{letter-spacing:0.792000px;}
.ls4{letter-spacing:0.858000px;}
.ls4f{letter-spacing:0.900000px;}
.ls2d{letter-spacing:1.152000px;}
.ls4c{letter-spacing:1.188000px;}
.ls43{letter-spacing:1.194000px;}
.ls45{letter-spacing:1.200000px;}
.ls2a{letter-spacing:1.612800px;}
.ls3f{letter-spacing:2.160000px;}
.ls29{letter-spacing:2.376000px;}
.ls4a{letter-spacing:3.180000px;}
.ls20{letter-spacing:3.600000px;}
.ls3c{letter-spacing:4.608000px;}
.ls35{letter-spacing:4.752000px;}
.lsa{letter-spacing:5.976000px;}
.ls37{letter-spacing:7.200000px;}
.ls4b{letter-spacing:11.580000px;}
.ls32{letter-spacing:11.952000px;}
.ls38{letter-spacing:13.176000px;}
.ls23{letter-spacing:14.400000px;}
.ls55{letter-spacing:14.724600px;}
.ls49{letter-spacing:15.180000px;}
.ls40{letter-spacing:15.552000px;}
.ls51{letter-spacing:16.380000px;}
.ls39{letter-spacing:18.057600px;}
.ls3d{letter-spacing:20.160000px;}
.ls3e{letter-spacing:20.376000px;}
.ls33{letter-spacing:22.752000px;}
.ls42{letter-spacing:22.920000px;}
.ls9{letter-spacing:23.586000px;}
.ls34{letter-spacing:23.976000px;}
.ls36{letter-spacing:25.200000px;}
.ls21{letter-spacing:29.160000px;}
.ls52{letter-spacing:30.780000px;}
.ls53{letter-spacing:76.380000px;}
.ls54{letter-spacing:79.200000px;}
.ls26{letter-spacing:192.780000px;}
.ls41{letter-spacing:193.176000px;}
.ls3{letter-spacing:503.580000px;}
.ls2{letter-spacing:765.180000px;}
.ls1{letter-spacing:846.780000px;}
.ls0{letter-spacing:1397.580000px;}
.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;}
}
.ws77{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.584000px;}
.ws8{word-spacing:-19.512000px;}
.ws3{word-spacing:-19.224000px;}
.ws6a{word-spacing:-19.152000px;}
.ws6b{word-spacing:-19.080000px;}
.ws78{word-spacing:-18.936000px;}
.ws8e{word-spacing:-18.792000px;}
.ws9f{word-spacing:-18.720000px;}
.ws28{word-spacing:-18.648000px;}
.wsc8{word-spacing:-18.576000px;}
.ws29{word-spacing:-18.216000px;}
.ws4f{word-spacing:-18.144000px;}
.ws7{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.640000px;}
.ws101{word-spacing:-17.358000px;}
.ws100{word-spacing:-17.094000px;}
.wsd5{word-spacing:-16.920000px;}
.wsd0{word-spacing:-16.500000px;}
.wsff{word-spacing:-16.368000px;}
.wsd2{word-spacing:-16.260000px;}
.wsd3{word-spacing:-16.080000px;}
.wsd4{word-spacing:-16.020000px;}
.wscf{word-spacing:-15.960000px;}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.720000px;}
.wsf9{word-spacing:-15.660000px;}
.wsd1{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws4{word-spacing:-15.480000px;}
.wsce{word-spacing:-14.700000px;}
.wsfe{word-spacing:-14.640000px;}
.wsfa{word-spacing:-14.400000px;}
.wsfd{word-spacing:-13.680000px;}
.wsfc{word-spacing:-13.560000px;}
.wsfb{word-spacing:-13.140000px;}
.ws55{word-spacing:-5.040000px;}
.ws4d{word-spacing:-4.752000px;}
.wsb4{word-spacing:-4.392000px;}
.ws4c{word-spacing:-4.248000px;}
.wse8{word-spacing:-3.960000px;}
.wsb3{word-spacing:-3.816000px;}
.ws2d{word-spacing:-3.528000px;}
.ws68{word-spacing:-3.168000px;}
.ws109{word-spacing:-3.060000px;}
.ws36{word-spacing:-3.024000px;}
.ws81{word-spacing:-2.808000px;}
.ws3e{word-spacing:-2.736000px;}
.ws7e{word-spacing:-2.664000px;}
.ws10c{word-spacing:-2.520000px;}
.wsdb{word-spacing:-2.400000px;}
.ws3f{word-spacing:-2.376000px;}
.wsd8{word-spacing:-2.340000px;}
.wsc6{word-spacing:-2.160000px;}
.ws48{word-spacing:-2.016000px;}
.wse6{word-spacing:-1.980000px;}
.wscd{word-spacing:-1.944000px;}
.ws3d{word-spacing:-1.872000px;}
.wsdf{word-spacing:-1.860000px;}
.ws108{word-spacing:-1.680000px;}
.ws3c{word-spacing:-1.584000px;}
.wsde{word-spacing:-1.560000px;}
.ws27{word-spacing:-1.512000px;}
.wsa7{word-spacing:-1.440000px;}
.ws3b{word-spacing:-1.152000px;}
.wsd9{word-spacing:-1.140000px;}
.ws9d{word-spacing:-0.936000px;}
.wsbf{word-spacing:-0.792000px;}
.ws82{word-spacing:-0.720000px;}
.wse9{word-spacing:-0.660000px;}
.ws4e{word-spacing:-0.648000px;}
.ws62{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.540000px;}
.wsa4{word-spacing:-0.504000px;}
.ws14{word-spacing:-0.480000px;}
.wsc{word-spacing:-0.420000px;}
.ws12{word-spacing:-0.360000px;}
.wsda{word-spacing:-0.300000px;}
.ws25{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws76{word-spacing:-0.120000px;}
.wsb{word-spacing:0.000000px;}
.ws15{word-spacing:0.060000px;}
.ws117{word-spacing:0.066000px;}
.ws18{word-spacing:0.072000px;}
.ws50{word-spacing:0.216000px;}
.wsec{word-spacing:0.240000px;}
.ws7d{word-spacing:0.288000px;}
.ws16{word-spacing:0.300000px;}
.ws2a{word-spacing:0.360000px;}
.ws11{word-spacing:0.432000px;}
.ws11a{word-spacing:0.462000px;}
.wseb{word-spacing:0.480000px;}
.ws10{word-spacing:0.504000px;}
.ws119{word-spacing:0.528000px;}
.wsee{word-spacing:0.540000px;}
.ws13{word-spacing:0.576000px;}
.wsf{word-spacing:0.756000px;}
.ws17{word-spacing:0.792000px;}
.wsab{word-spacing:0.864000px;}
.ws1d{word-spacing:0.936000px;}
.ws7f{word-spacing:1.008000px;}
.wsef{word-spacing:1.080000px;}
.ws85{word-spacing:1.224000px;}
.wsed{word-spacing:1.260000px;}
.ws86{word-spacing:1.368000px;}
.wsbb{word-spacing:1.440000px;}
.ws4a{word-spacing:1.584000px;}
.ws94{word-spacing:1.656000px;}
.ws20{word-spacing:1.728000px;}
.ws47{word-spacing:1.800000px;}
.ws46{word-spacing:2.160000px;}
.ws32{word-spacing:2.448000px;}
.ws10a{word-spacing:2.460000px;}
.wsb1{word-spacing:2.520000px;}
.ws1a{word-spacing:2.808000px;}
.wsa5{word-spacing:2.880000px;}
.wsf3{word-spacing:2.940000px;}
.ws52{word-spacing:2.952000px;}
.wsf7{word-spacing:3.120000px;}
.wsf4{word-spacing:3.360000px;}
.ws8d{word-spacing:3.384000px;}
.ws118{word-spacing:3.564000px;}
.ws26{word-spacing:3.600000px;}
.wsf5{word-spacing:3.660000px;}
.ws41{word-spacing:3.672000px;}
.wsa8{word-spacing:3.888000px;}
.ws2b{word-spacing:3.960000px;}
.ws69{word-spacing:4.032000px;}
.wsf0{word-spacing:4.140000px;}
.ws59{word-spacing:4.176000px;}
.wse4{word-spacing:4.320000px;}
.wsa1{word-spacing:4.464000px;}
.wsbc{word-spacing:4.536000px;}
.wse5{word-spacing:4.560000px;}
.wsf6{word-spacing:4.680000px;}
.ws88{word-spacing:4.824000px;}
.wsea{word-spacing:4.860000px;}
.ws5d{word-spacing:5.184000px;}
.ws40{word-spacing:5.256000px;}
.ws2f{word-spacing:5.328000px;}
.wse1{word-spacing:5.340000px;}
.wse3{word-spacing:5.460000px;}
.wse2{word-spacing:5.520000px;}
.ws79{word-spacing:5.616000px;}
.ws9c{word-spacing:5.760000px;}
.ws1f{word-spacing:6.048000px;}
.ws2e{word-spacing:6.264000px;}
.ws87{word-spacing:6.408000px;}
.ws1e{word-spacing:6.552000px;}
.wsdd{word-spacing:6.720000px;}
.wsb0{word-spacing:6.984000px;}
.ws43{word-spacing:7.272000px;}
.ws5a{word-spacing:7.632000px;}
.ws10d{word-spacing:7.740000px;}
.ws44{word-spacing:7.776000px;}
.ws91{word-spacing:8.136000px;}
.ws90{word-spacing:8.424000px;}
.wse7{word-spacing:8.460000px;}
.wsa0{word-spacing:8.640000px;}
.wsae{word-spacing:8.784000px;}
.ws5b{word-spacing:8.928000px;}
.ws71{word-spacing:9.648000px;}
.wsd7{word-spacing:9.660000px;}
.ws7c{word-spacing:9.936000px;}
.ws74{word-spacing:10.008000px;}
.ws7b{word-spacing:10.152000px;}
.ws34{word-spacing:10.512000px;}
.wsbe{word-spacing:10.584000px;}
.ws35{word-spacing:10.872000px;}
.ws7a{word-spacing:10.944000px;}
.ws93{word-spacing:11.088000px;}
.ws83{word-spacing:11.232000px;}
.wsa6{word-spacing:11.376000px;}
.wsf8{word-spacing:11.520000px;}
.ws72{word-spacing:11.736000px;}
.ws6c{word-spacing:12.024000px;}
.ws60{word-spacing:12.384000px;}
.ws61{word-spacing:12.456000px;}
.ws1c{word-spacing:12.528000px;}
.wsaf{word-spacing:12.960000px;}
.ws4b{word-spacing:13.248000px;}
.ws80{word-spacing:13.464000px;}
.ws95{word-spacing:13.608000px;}
.ws3a{word-spacing:13.752000px;}
.ws115{word-spacing:14.322000px;}
.ws2c{word-spacing:14.472000px;}
.wsc7{word-spacing:14.616000px;}
.ws75{word-spacing:14.688000px;}
.ws114{word-spacing:14.850000px;}
.wsc1{word-spacing:14.904000px;}
.ws5e{word-spacing:14.976000px;}
.ws116{word-spacing:15.114000px;}
.wsca{word-spacing:15.264000px;}
.ws6e{word-spacing:15.336000px;}
.ws65{word-spacing:15.624000px;}
.wsf2{word-spacing:15.660000px;}
.ws6d{word-spacing:15.984000px;}
.ws5c{word-spacing:16.128000px;}
.ws103{word-spacing:16.260000px;}
.ws84{word-spacing:16.416000px;}
.ws105{word-spacing:16.680000px;}
.ws104{word-spacing:16.800000px;}
.ws33{word-spacing:16.848000px;}
.ws102{word-spacing:16.860000px;}
.wsc5{word-spacing:17.352000px;}
.ws42{word-spacing:17.784000px;}
.ws45{word-spacing:18.072000px;}
.ws63{word-spacing:18.288000px;}
.wsb2{word-spacing:18.432000px;}
.ws64{word-spacing:18.576000px;}
.ws73{word-spacing:18.648000px;}
.ws31{word-spacing:19.224000px;}
.ws30{word-spacing:19.440000px;}
.wsd6{word-spacing:19.584000px;}
.ws70{word-spacing:19.728000px;}
.ws8f{word-spacing:20.160000px;}
.ws8a{word-spacing:20.448000px;}
.wsc0{word-spacing:20.664000px;}
.wscb{word-spacing:20.808000px;}
.ws37{word-spacing:20.952000px;}
.ws53{word-spacing:21.384000px;}
.ws58{word-spacing:21.672000px;}
.ws56{word-spacing:21.744000px;}
.ws57{word-spacing:22.176000px;}
.ws97{word-spacing:22.392000px;}
.ws96{word-spacing:22.536000px;}
.ws49{word-spacing:22.824000px;}
.wsac{word-spacing:23.184000px;}
.ws24{word-spacing:23.328000px;}
.wsa2{word-spacing:23.616000px;}
.ws99{word-spacing:23.760000px;}
.ws98{word-spacing:24.048000px;}
.wsc4{word-spacing:24.192000px;}
.ws9a{word-spacing:24.552000px;}
.ws8b{word-spacing:25.272000px;}
.wsaa{word-spacing:25.416000px;}
.wsa9{word-spacing:25.488000px;}
.wsc2{word-spacing:25.776000px;}
.ws9e{word-spacing:26.064000px;}
.ws51{word-spacing:26.424000px;}
.wse0{word-spacing:26.460000px;}
.ws6f{word-spacing:26.640000px;}
.ws19{word-spacing:26.928000px;}
.wsbd{word-spacing:27.648000px;}
.wsf1{word-spacing:28.140000px;}
.ws89{word-spacing:28.152000px;}
.wsb9{word-spacing:29.376000px;}
.ws10e{word-spacing:29.520000px;}
.ws66{word-spacing:29.736000px;}
.ws110{word-spacing:29.880000px;}
.ws10f{word-spacing:30.000000px;}
.wscc{word-spacing:30.240000px;}
.ws67{word-spacing:30.528000px;}
.wsdc{word-spacing:31.260000px;}
.wsc9{word-spacing:31.752000px;}
.ws1b{word-spacing:32.472000px;}
.ws5f{word-spacing:32.976000px;}
.ws38{word-spacing:33.336000px;}
.wsba{word-spacing:33.624000px;}
.ws39{word-spacing:33.984000px;}
.wsb5{word-spacing:34.128000px;}
.wsad{word-spacing:34.848000px;}
.ws92{word-spacing:35.208000px;}
.ws9b{word-spacing:35.352000px;}
.ws8c{word-spacing:36.576000px;}
.wsa3{word-spacing:39.672000px;}
.ws23{word-spacing:41.040000px;}
.ws21{word-spacing:41.184000px;}
.ws22{word-spacing:41.328000px;}
.wsc3{word-spacing:46.152000px;}
.wsb6{word-spacing:48.240000px;}
.wsb8{word-spacing:48.384000px;}
.wsb7{word-spacing:48.528000px;}
.ws54{word-spacing:49.248000px;}
.ws106{word-spacing:75.120000px;}
.ws107{word-spacing:75.480000px;}
.ws111{word-spacing:77.520000px;}
.ws113{word-spacing:77.640000px;}
.ws112{word-spacing:78.060000px;}
.ws10b{word-spacing:126.060000px;}
._1d{margin-left:-8.352000px;}
._11{margin-left:-7.262400px;}
._7{margin-left:-5.738400px;}
._6{margin-left:-4.183200px;}
._5{margin-left:-2.371200px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._9{width:2.287200px;}
._13{width:4.132800px;}
._16{width:6.177600px;}
._1f{width:7.183200px;}
._1e{width:9.556800px;}
._17{width:13.464000px;}
._18{width:15.230400px;}
._14{width:16.492800px;}
._8{width:18.093600px;}
._15{width:20.908800px;}
._a{width:22.238400px;}
._b{width:23.400000px;}
._c{width:26.176800px;}
._d{width:27.304800px;}
._e{width:31.620000px;}
._f{width:33.264000px;}
._10{width:35.047200px;}
._12{width:36.420000px;}
._22{width:77.640000px;}
._1c{width:130.432800px;}
._1b{width:160.632000px;}
._20{width:173.952000px;}
._21{width:175.968000px;}
._3{width:765.900000px;}
._1a{width:809.460000px;}
._4{width:821.580000px;}
._2{width:1005.420000px;}
._19{width:1139.580000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.000000px;}
.fs7{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y7{bottom:5.100000px;}
.ya{bottom:6.000000px;}
.yb2{bottom:24.600000px;}
.y4{bottom:67.800000px;}
.yb1{bottom:92.700000px;}
.yb3{bottom:96.900000px;}
.y160{bottom:97.224000px;}
.y8f{bottom:97.230000px;}
.y65{bottom:97.278000px;}
.y174{bottom:105.006000px;}
.yf7{bottom:105.024000px;}
.y123{bottom:105.036000px;}
.yc3{bottom:105.096000px;}
.y18e{bottom:112.806000px;}
.y1a3{bottom:112.812000px;}
.ydd{bottom:112.854000px;}
.y35{bottom:114.924000px;}
.y15f{bottom:120.624000px;}
.y8e{bottom:120.630000px;}
.y64{bottom:120.678000px;}
.y173{bottom:128.100000px;}
.yf6{bottom:128.118000px;}
.y122{bottom:128.130000px;}
.yc2{bottom:128.190000px;}
.yb0{bottom:135.600000px;}
.y18d{bottom:135.900000px;}
.y1a2{bottom:135.906000px;}
.ydc{bottom:135.948000px;}
.y142{bottom:135.960000px;}
.y34{bottom:138.324000px;}
.y1d4{bottom:142.800000px;}
.y15e{bottom:143.718000px;}
.y8d{bottom:143.724000px;}
.y63{bottom:143.772000px;}
.y172{bottom:151.500000px;}
.yf5{bottom:151.518000px;}
.y121{bottom:151.530000px;}
.yc1{bottom:151.590000px;}
.y18c{bottom:159.300000px;}
.y1a1{bottom:159.306000px;}
.ydb{bottom:159.348000px;}
.y141{bottom:159.360000px;}
.y33{bottom:161.418000px;}
.y1d3{bottom:162.300000px;}
.y15d{bottom:167.118000px;}
.y8c{bottom:167.124000px;}
.y62{bottom:167.172000px;}
.y171{bottom:173.100000px;}
.yf4{bottom:174.918000px;}
.y120{bottom:174.930000px;}
.yc0{bottom:174.990000px;}
.y18b{bottom:180.900000px;}
.y1d2{bottom:181.800000px;}
.y1a0{bottom:182.706000px;}
.yda{bottom:182.748000px;}
.y140{bottom:182.760000px;}
.y32{bottom:184.818000px;}
.y15c{bottom:190.212000px;}
.y8b{bottom:190.218000px;}
.y170{bottom:190.224000px;}
.y61{bottom:190.266000px;}
.yf3{bottom:198.012000px;}
.y11f{bottom:198.024000px;}
.ybf{bottom:198.084000px;}
.y1d1{bottom:201.000000px;}
.y19f{bottom:205.800000px;}
.yd9{bottom:205.842000px;}
.y13f{bottom:205.854000px;}
.y31{bottom:208.218000px;}
.y15b{bottom:213.612000px;}
.y8a{bottom:213.618000px;}
.y16f{bottom:213.624000px;}
.y60{bottom:213.666000px;}
.y1d0{bottom:220.500000px;}
.yf2{bottom:221.412000px;}
.y11e{bottom:221.424000px;}
.ybe{bottom:221.484000px;}
.y19e{bottom:227.400000px;}
.yd8{bottom:229.242000px;}
.y13e{bottom:229.254000px;}
.y30{bottom:231.312000px;}
.y15a{bottom:237.012000px;}
.y89{bottom:237.018000px;}
.y16e{bottom:237.024000px;}
.y5f{bottom:237.066000px;}
.y1cf{bottom:240.000000px;}
.yf1{bottom:244.812000px;}
.y11d{bottom:244.824000px;}
.ybd{bottom:244.884000px;}
.yd7{bottom:252.642000px;}
.y13d{bottom:252.654000px;}
.y2f{bottom:254.712000px;}
.y1ce{bottom:259.200000px;}
.y159{bottom:260.106000px;}
.y88{bottom:260.112000px;}
.y16d{bottom:260.118000px;}
.y5e{bottom:260.160000px;}
.yf0{bottom:267.906000px;}
.y11c{bottom:267.918000px;}
.ybc{bottom:267.978000px;}
.yd6{bottom:275.736000px;}
.y13c{bottom:275.748000px;}
.y2e{bottom:277.806000px;}
.y1cd{bottom:278.700000px;}
.y158{bottom:283.506000px;}
.y87{bottom:283.512000px;}
.y16c{bottom:283.518000px;}
.y5d{bottom:283.560000px;}
.yef{bottom:291.306000px;}
.y11b{bottom:291.318000px;}
.ybb{bottom:291.378000px;}
.y1cc{bottom:298.200000px;}
.yd5{bottom:299.136000px;}
.y13b{bottom:299.148000px;}
.y2d{bottom:301.206000px;}
.y157{bottom:306.906000px;}
.y86{bottom:306.912000px;}
.y16b{bottom:306.918000px;}
.y5c{bottom:306.960000px;}
.y1ff{bottom:307.200000px;}
.yee{bottom:314.706000px;}
.y11a{bottom:314.718000px;}
.yba{bottom:314.778000px;}
.y1cb{bottom:317.700000px;}
.yd4{bottom:322.230000px;}
.y13a{bottom:322.242000px;}
.y2c{bottom:324.606000px;}
.y1fe{bottom:328.800000px;}
.y156{bottom:330.000000px;}
.y85{bottom:330.006000px;}
.y16a{bottom:330.012000px;}
.y5b{bottom:330.054000px;}
.y1ca{bottom:336.900000px;}
.yed{bottom:337.800000px;}
.y119{bottom:337.812000px;}
.yb9{bottom:337.872000px;}
.yaf{bottom:342.300000px;}
.yd3{bottom:345.630000px;}
.y139{bottom:345.642000px;}
.y2b{bottom:347.700000px;}
.y1fd{bottom:350.100000px;}
.y155{bottom:351.600000px;}
.y84{bottom:353.406000px;}
.y169{bottom:353.412000px;}
.yae{bottom:353.424000px;}
.y5a{bottom:353.454000px;}
.y1c9{bottom:356.400000px;}
.yec{bottom:359.400000px;}
.y18a{bottom:361.200000px;}
.y118{bottom:361.212000px;}
.yb8{bottom:361.272000px;}
.yd2{bottom:369.030000px;}
.y138{bottom:369.042000px;}
.y154{bottom:369.066000px;}
.y2a{bottom:369.300000px;}
.y1fc{bottom:371.400000px;}
.y1c8{bottom:375.900000px;}
.y83{bottom:376.806000px;}
.y168{bottom:376.812000px;}
.yad{bottom:376.824000px;}
.y59{bottom:376.854000px;}
.y189{bottom:382.500000px;}
.y117{bottom:384.306000px;}
.yb7{bottom:384.366000px;}
.y29{bottom:386.706000px;}
.y1fb{bottom:391.500000px;}
.yd1{bottom:392.124000px;}
.y137{bottom:392.136000px;}
.y153{bottom:392.160000px;}
.y1c7{bottom:395.100000px;}
.y82{bottom:399.900000px;}
.y167{bottom:399.906000px;}
.yac{bottom:399.918000px;}
.y58{bottom:399.948000px;}
.y116{bottom:407.706000px;}
.yb6{bottom:407.766000px;}
.y1fa{bottom:408.297000px;}
.y28{bottom:409.800000px;}
.y1c6{bottom:414.600000px;}
.yd0{bottom:415.524000px;}
.y136{bottom:415.536000px;}
.y152{bottom:415.560000px;}
.y81{bottom:423.300000px;}
.y166{bottom:423.306000px;}
.yab{bottom:423.318000px;}
.y57{bottom:423.348000px;}
.y1f9{bottom:429.598500px;}
.y115{bottom:431.106000px;}
.yb5{bottom:431.166000px;}
.y27{bottom:431.400000px;}
.y1c5{bottom:434.100000px;}
.ycf{bottom:438.924000px;}
.y135{bottom:438.936000px;}
.y151{bottom:438.960000px;}
.y80{bottom:446.700000px;}
.y165{bottom:446.706000px;}
.yaa{bottom:446.718000px;}
.y56{bottom:446.748000px;}
.y26{bottom:448.824000px;}
.y1f8{bottom:450.900000px;}
.y1c4{bottom:453.300000px;}
.y114{bottom:454.200000px;}
.yb4{bottom:454.260000px;}
.yce{bottom:462.018000px;}
.y134{bottom:462.030000px;}
.y150{bottom:462.054000px;}
.y7f{bottom:466.500000px;}
.y188{bottom:468.000000px;}
.y164{bottom:469.800000px;}
.ya9{bottom:469.812000px;}
.y55{bottom:469.842000px;}
.y25{bottom:472.224000px;}
.y1c3{bottom:472.800000px;}
.y1f7{bottom:476.700000px;}
.y113{bottom:477.600000px;}
.y7e{bottom:477.660000px;}
.ycd{bottom:485.418000px;}
.y133{bottom:485.430000px;}
.y187{bottom:485.436000px;}
.y14f{bottom:485.454000px;}
.y163{bottom:491.400000px;}
.y1c2{bottom:492.300000px;}
.ya8{bottom:493.212000px;}
.y54{bottom:493.242000px;}
.y24{bottom:495.318000px;}
.y112{bottom:501.000000px;}
.y7d{bottom:501.060000px;}
.y19d{bottom:508.812000px;}
.ycc{bottom:508.818000px;}
.y132{bottom:508.830000px;}
.y186{bottom:508.836000px;}
.y14e{bottom:508.854000px;}
.y1c1{bottom:511.800000px;}
.ya7{bottom:516.306000px;}
.y53{bottom:516.336000px;}
.y23{bottom:518.718000px;}
.y1f6{bottom:519.898500px;}
.y111{bottom:522.300000px;}
.y7c{bottom:524.154000px;}
.y1c0{bottom:531.000000px;}
.y19c{bottom:531.906000px;}
.ycb{bottom:531.912000px;}
.y131{bottom:531.924000px;}
.y185{bottom:531.930000px;}
.y14d{bottom:531.948000px;}
.ya6{bottom:539.706000px;}
.y110{bottom:539.712000px;}
.y52{bottom:539.736000px;}
.y1f5{bottom:541.200000px;}
.y22{bottom:541.812000px;}
.y7b{bottom:547.554000px;}
.y1bf{bottom:550.500000px;}
.y19b{bottom:555.306000px;}
.yca{bottom:555.312000px;}
.y130{bottom:555.324000px;}
.y184{bottom:555.330000px;}
.y14c{bottom:555.348000px;}
.y1f4{bottom:561.300000px;}
.ya5{bottom:563.106000px;}
.y10f{bottom:563.112000px;}
.y51{bottom:563.136000px;}
.y21{bottom:565.212000px;}
.y1be{bottom:570.000000px;}
.y7a{bottom:570.954000px;}
.y1f3{bottom:577.500000px;}
.y19a{bottom:578.400000px;}
.yc9{bottom:578.406000px;}
.y12f{bottom:578.418000px;}
.y183{bottom:578.424000px;}
.y14b{bottom:578.442000px;}
.ya4{bottom:586.200000px;}
.y10e{bottom:586.206000px;}
.y50{bottom:586.230000px;}
.y20{bottom:588.612000px;}
.y1bd{bottom:589.200000px;}
.y79{bottom:594.048000px;}
.y1f2{bottom:597.000000px;}
.y199{bottom:601.800000px;}
.yc8{bottom:601.806000px;}
.y12e{bottom:601.818000px;}
.y182{bottom:601.824000px;}
.y14a{bottom:601.842000px;}
.y1bc{bottom:608.700000px;}
.ya3{bottom:609.600000px;}
.y10d{bottom:609.606000px;}
.y4f{bottom:609.630000px;}
.y1f{bottom:611.706000px;}
.y1f1{bottom:616.500000px;}
.y78{bottom:617.448000px;}
.y198{bottom:625.200000px;}
.yc7{bottom:625.206000px;}
.y12d{bottom:625.218000px;}
.y181{bottom:625.224000px;}
.y149{bottom:625.242000px;}
.y1bb{bottom:628.200000px;}
.ya2{bottom:628.800000px;}
.yeb{bottom:631.200000px;}
.y10c{bottom:633.006000px;}
.y4e{bottom:633.030000px;}
.y1f0{bottom:635.100000px;}
.y1e{bottom:635.106000px;}
.ya1{bottom:636.936000px;}
.y77{bottom:640.848000px;}
.y197{bottom:646.500000px;}
.y1ba{bottom:647.400000px;}
.yc6{bottom:648.300000px;}
.y12c{bottom:648.312000px;}
.y180{bottom:648.318000px;}
.yea{bottom:648.324000px;}
.y148{bottom:648.336000px;}
.y1ef{bottom:651.300000px;}
.y10b{bottom:656.100000px;}
.y4d{bottom:656.124000px;}
.y1d{bottom:658.506000px;}
.ya0{bottom:660.030000px;}
.y196{bottom:663.912000px;}
.y76{bottom:663.942000px;}
.y1b9{bottom:666.900000px;}
.y1ee{bottom:670.800000px;}
.yc5{bottom:671.700000px;}
.y12b{bottom:671.712000px;}
.y17f{bottom:671.718000px;}
.ye9{bottom:671.724000px;}
.y147{bottom:671.736000px;}
.y10a{bottom:679.500000px;}
.y4c{bottom:679.524000px;}
.y1c{bottom:681.600000px;}
.y9f{bottom:683.430000px;}
.y1b8{bottom:686.400000px;}
.y195{bottom:687.312000px;}
.y75{bottom:687.342000px;}
.y1ed{bottom:690.300000px;}
.yc4{bottom:693.300000px;}
.y12a{bottom:695.112000px;}
.y17e{bottom:695.118000px;}
.ye8{bottom:695.124000px;}
.y146{bottom:695.136000px;}
.y109{bottom:702.900000px;}
.y4b{bottom:702.924000px;}
.y1b{bottom:705.000000px;}
.y1b7{bottom:705.900000px;}
.y9e{bottom:706.830000px;}
.y1ec{bottom:709.500000px;}
.y194{bottom:710.406000px;}
.y74{bottom:710.436000px;}
.y129{bottom:718.206000px;}
.y17d{bottom:718.212000px;}
.ye7{bottom:718.218000px;}
.y145{bottom:718.230000px;}
.y108{bottom:724.200000px;}
.y1b6{bottom:725.100000px;}
.y4a{bottom:726.018000px;}
.y1a{bottom:728.400000px;}
.y1eb{bottom:729.000000px;}
.y9d{bottom:729.924000px;}
.y193{bottom:733.806000px;}
.y73{bottom:733.836000px;}
.y128{bottom:741.606000px;}
.y17c{bottom:741.612000px;}
.ye6{bottom:741.618000px;}
.y107{bottom:741.630000px;}
.y1b5{bottom:744.600000px;}
.y1ea{bottom:748.500000px;}
.y49{bottom:749.418000px;}
.y19{bottom:751.500000px;}
.y9c{bottom:753.324000px;}
.y192{bottom:757.206000px;}
.y72{bottom:757.236000px;}
.y1b4{bottom:764.100000px;}
.y127{bottom:765.006000px;}
.y17b{bottom:765.012000px;}
.ye5{bottom:765.018000px;}
.y106{bottom:765.030000px;}
.y1e9{bottom:768.000000px;}
.y48{bottom:772.512000px;}
.y18{bottom:773.100000px;}
.y9b{bottom:776.418000px;}
.y191{bottom:780.300000px;}
.y71{bottom:780.330000px;}
.y1b3{bottom:783.300000px;}
.y1e8{bottom:787.200000px;}
.y126{bottom:788.100000px;}
.y17a{bottom:788.106000px;}
.ye4{bottom:788.112000px;}
.y105{bottom:788.124000px;}
.y17{bottom:789.600000px;}
.y47{bottom:795.912000px;}
.y9a{bottom:799.818000px;}
.y1b2{bottom:802.800000px;}
.y190{bottom:803.700000px;}
.y70{bottom:803.730000px;}
.y1e7{bottom:806.700000px;}
.y16{bottom:808.800000px;}
.y125{bottom:811.500000px;}
.y179{bottom:811.506000px;}
.ye3{bottom:811.512000px;}
.y104{bottom:811.524000px;}
.y46{bottom:819.312000px;}
.y1b1{bottom:822.300000px;}
.y99{bottom:823.218000px;}
.y18f{bottom:825.300000px;}
.y1e6{bottom:826.200000px;}
.y6f{bottom:827.130000px;}
.y15{bottom:827.400000px;}
.y124{bottom:833.100000px;}
.y162{bottom:834.900000px;}
.y178{bottom:834.906000px;}
.ye2{bottom:834.912000px;}
.y103{bottom:834.924000px;}
.y1b0{bottom:841.500000px;}
.y45{bottom:842.406000px;}
.y14{bottom:843.900000px;}
.y1e5{bottom:845.400000px;}
.y98{bottom:846.312000px;}
.y6e{bottom:850.224000px;}
.y161{bottom:856.200000px;}
.y177{bottom:858.000000px;}
.ye1{bottom:858.006000px;}
.y102{bottom:858.018000px;}
.y1af{bottom:861.000000px;}
.y13{bottom:864.600000px;}
.y1e4{bottom:864.900000px;}
.y44{bottom:865.806000px;}
.y97{bottom:869.712000px;}
.y6d{bottom:873.624000px;}
.y1ae{bottom:880.500000px;}
.y176{bottom:881.400000px;}
.ye0{bottom:881.406000px;}
.y101{bottom:881.418000px;}
.y1e3{bottom:884.400000px;}
.y12{bottom:885.600000px;}
.y43{bottom:889.206000px;}
.y96{bottom:893.112000px;}
.y6c{bottom:897.024000px;}
.y1ad{bottom:900.000000px;}
.y175{bottom:902.700000px;}
.y1e2{bottom:903.600000px;}
.ydf{bottom:904.500000px;}
.y100{bottom:904.512000px;}
.y11{bottom:906.000000px;}
.y42{bottom:912.300000px;}
.y95{bottom:916.206000px;}
.y1ac{bottom:919.200000px;}
.y6b{bottom:920.118000px;}
.y1e1{bottom:923.100000px;}
.yde{bottom:926.100000px;}
.yff{bottom:927.912000px;}
.y10{bottom:929.400000px;}
.y41{bottom:935.700000px;}
.y1ab{bottom:938.700000px;}
.y94{bottom:939.606000px;}
.y1e0{bottom:942.600000px;}
.y6a{bottom:943.518000px;}
.yfe{bottom:951.312000px;}
.yf{bottom:952.500000px;}
.y1aa{bottom:958.200000px;}
.y40{bottom:959.100000px;}
.y1df{bottom:962.100000px;}
.y93{bottom:963.006000px;}
.y69{bottom:966.612000px;}
.yfd{bottom:974.406000px;}
.ye{bottom:976.494000px;}
.y1a9{bottom:977.400000px;}
.y3f{bottom:980.400000px;}
.y1de{bottom:981.300000px;}
.y92{bottom:986.100000px;}
.y68{bottom:990.012000px;}
.y1a8{bottom:996.900000px;}
.y3e{bottom:997.800000px;}
.yfc{bottom:997.806000px;}
.y1dd{bottom:1000.800000px;}
.yd{bottom:1003.794000px;}
.y91{bottom:1009.500000px;}
.y67{bottom:1013.412000px;}
.y1a7{bottom:1016.400000px;}
.y1dc{bottom:1020.300000px;}
.y3d{bottom:1021.200000px;}
.yfb{bottom:1021.206000px;}
.y90{bottom:1028.400000px;}
.yc{bottom:1030.800000px;}
.y1a6{bottom:1035.600000px;}
.y66{bottom:1036.506000px;}
.y1db{bottom:1039.500000px;}
.y3c{bottom:1042.500000px;}
.yfa{bottom:1044.300000px;}
.y1a5{bottom:1055.100000px;}
.yb{bottom:1058.100000px;}
.y1da{bottom:1059.000000px;}
.y3b{bottom:1059.906000px;}
.yf9{bottom:1067.700000px;}
.y1a4{bottom:1073.700000px;}
.y1d9{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y3a{bottom:1083.306000px;}
.yf8{bottom:1089.300000px;}
.y144{bottom:1091.100000px;}
.y1d8{bottom:1097.700000px;}
.y6{bottom:1103.400000px;}
.y39{bottom:1106.400000px;}
.y143{bottom:1112.400000px;}
.y1d7{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y38{bottom:1129.800000px;}
.y1d6{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y37{bottom:1153.200000px;}
.y1d5{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y36{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h12{height:10.440000px;}
.h10{height:20.880000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.h4{height:31.320000px;}
.h14{height:34.272000px;}
.hd{height:41.760000px;}
.h15{height:42.898500px;}
.h3{height:43.920000px;}
.h7{height:47.400000px;}
.h19{height:48.312000px;}
.h2{height:48.420000px;}
.h11{height:51.408000px;}
.hc{height:52.200000px;}
.he{height:52.704000px;}
.h18{height:57.420000px;}
.h6{height:58.104000px;}
.h16{height:62.578125px;}
.hb{height:62.640000px;}
.ha{height:67.788000px;}
.h17{height:70.664062px;}
.h9{height:73.080000px;}
.hf{height:75.093750px;}
.h13{height:204.900000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w2{width:478.200000px;}
.w5{width:709.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x3{left:79.800000px;}
.x1{left:91.500000px;}
.x14{left:95.700000px;}
.x9{left:103.806000px;}
.x19{left:112.800000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x13{left:144.600000px;}
.x1a{left:173.100000px;}
.x11{left:176.388000px;}
.xa{left:200.406000px;}
.x12{left:208.518000px;}
.xc{left:249.600000px;}
.x18{left:251.106000px;}
.xb{left:272.100000px;}
.xe{left:282.900000px;}
.x17{left:306.600000px;}
.xd{left:328.500000px;}
.xf{left:374.100000px;}
.x2{left:446.400000px;}
.x10{left:449.400000px;}
.x15{left:473.100000px;}
.x5{left:558.000000px;}
.x16{left:605.400000px;}
.x7{left:685.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls1f{letter-spacing:-3.200000pt;}
.ls57{letter-spacing:-2.560000pt;}
.ls58{letter-spacing:-2.186667pt;}
.ls59{letter-spacing:-2.080000pt;}
.ls56{letter-spacing:-1.440000pt;}
.ls5a{letter-spacing:-1.333333pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls60{letter-spacing:-0.469333pt;}
.ls1e{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls5b{letter-spacing:-0.293333pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls62{letter-spacing:-0.234667pt;}
.ls30{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.149333pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls5f{letter-spacing:-0.117333pt;}
.ls50{letter-spacing:-0.106667pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls61{letter-spacing:-0.058667pt;}
.ls4d{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.053333pt;}
.ls3b{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls48{letter-spacing:0.112000pt;}
.ls2f{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls4e{letter-spacing:0.213333pt;}
.ls28{letter-spacing:0.249600pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls44{letter-spacing:0.266667pt;}
.ls3a{letter-spacing:0.268800pt;}
.ls5d{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls5e{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.358400pt;}
.lsb{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.390400pt;}
.ls5c{letter-spacing:0.410667pt;}
.ls22{letter-spacing:0.422400pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.428800pt;}
.ls7{letter-spacing:0.448000pt;}
.ls47{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.576000pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls46{letter-spacing:0.693333pt;}
.ls31{letter-spacing:0.704000pt;}
.ls4{letter-spacing:0.762667pt;}
.ls4f{letter-spacing:0.800000pt;}
.ls2d{letter-spacing:1.024000pt;}
.ls4c{letter-spacing:1.056000pt;}
.ls43{letter-spacing:1.061333pt;}
.ls45{letter-spacing:1.066667pt;}
.ls2a{letter-spacing:1.433600pt;}
.ls3f{letter-spacing:1.920000pt;}
.ls29{letter-spacing:2.112000pt;}
.ls4a{letter-spacing:2.826667pt;}
.ls20{letter-spacing:3.200000pt;}
.ls3c{letter-spacing:4.096000pt;}
.ls35{letter-spacing:4.224000pt;}
.lsa{letter-spacing:5.312000pt;}
.ls37{letter-spacing:6.400000pt;}
.ls4b{letter-spacing:10.293333pt;}
.ls32{letter-spacing:10.624000pt;}
.ls38{letter-spacing:11.712000pt;}
.ls23{letter-spacing:12.800000pt;}
.ls55{letter-spacing:13.088533pt;}
.ls49{letter-spacing:13.493333pt;}
.ls40{letter-spacing:13.824000pt;}
.ls51{letter-spacing:14.560000pt;}
.ls39{letter-spacing:16.051200pt;}
.ls3d{letter-spacing:17.920000pt;}
.ls3e{letter-spacing:18.112000pt;}
.ls33{letter-spacing:20.224000pt;}
.ls42{letter-spacing:20.373333pt;}
.ls9{letter-spacing:20.965333pt;}
.ls34{letter-spacing:21.312000pt;}
.ls36{letter-spacing:22.400000pt;}
.ls21{letter-spacing:25.920000pt;}
.ls52{letter-spacing:27.360000pt;}
.ls53{letter-spacing:67.893333pt;}
.ls54{letter-spacing:70.400000pt;}
.ls26{letter-spacing:171.360000pt;}
.ls41{letter-spacing:171.712000pt;}
.ls3{letter-spacing:447.626667pt;}
.ls2{letter-spacing:680.160000pt;}
.ls1{letter-spacing:752.693333pt;}
.ls0{letter-spacing:1242.293333pt;}
.ws77{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.408000pt;}
.ws8{word-spacing:-17.344000pt;}
.ws3{word-spacing:-17.088000pt;}
.ws6a{word-spacing:-17.024000pt;}
.ws6b{word-spacing:-16.960000pt;}
.ws78{word-spacing:-16.832000pt;}
.ws8e{word-spacing:-16.704000pt;}
.ws9f{word-spacing:-16.640000pt;}
.ws28{word-spacing:-16.576000pt;}
.wsc8{word-spacing:-16.512000pt;}
.ws29{word-spacing:-16.192000pt;}
.ws4f{word-spacing:-16.128000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.680000pt;}
.ws101{word-spacing:-15.429333pt;}
.ws100{word-spacing:-15.194667pt;}
.wsd5{word-spacing:-15.040000pt;}
.wsd0{word-spacing:-14.666667pt;}
.wsff{word-spacing:-14.549333pt;}
.wsd2{word-spacing:-14.453333pt;}
.wsd3{word-spacing:-14.293333pt;}
.wsd4{word-spacing:-14.240000pt;}
.wscf{word-spacing:-14.186667pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.973333pt;}
.wsf9{word-spacing:-13.920000pt;}
.wsd1{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws4{word-spacing:-13.760000pt;}
.wsce{word-spacing:-13.066667pt;}
.wsfe{word-spacing:-13.013333pt;}
.wsfa{word-spacing:-12.800000pt;}
.wsfd{word-spacing:-12.160000pt;}
.wsfc{word-spacing:-12.053333pt;}
.wsfb{word-spacing:-11.680000pt;}
.ws55{word-spacing:-4.480000pt;}
.ws4d{word-spacing:-4.224000pt;}
.wsb4{word-spacing:-3.904000pt;}
.ws4c{word-spacing:-3.776000pt;}
.wse8{word-spacing:-3.520000pt;}
.wsb3{word-spacing:-3.392000pt;}
.ws2d{word-spacing:-3.136000pt;}
.ws68{word-spacing:-2.816000pt;}
.ws109{word-spacing:-2.720000pt;}
.ws36{word-spacing:-2.688000pt;}
.ws81{word-spacing:-2.496000pt;}
.ws3e{word-spacing:-2.432000pt;}
.ws7e{word-spacing:-2.368000pt;}
.ws10c{word-spacing:-2.240000pt;}
.wsdb{word-spacing:-2.133333pt;}
.ws3f{word-spacing:-2.112000pt;}
.wsd8{word-spacing:-2.080000pt;}
.wsc6{word-spacing:-1.920000pt;}
.ws48{word-spacing:-1.792000pt;}
.wse6{word-spacing:-1.760000pt;}
.wscd{word-spacing:-1.728000pt;}
.ws3d{word-spacing:-1.664000pt;}
.wsdf{word-spacing:-1.653333pt;}
.ws108{word-spacing:-1.493333pt;}
.ws3c{word-spacing:-1.408000pt;}
.wsde{word-spacing:-1.386667pt;}
.ws27{word-spacing:-1.344000pt;}
.wsa7{word-spacing:-1.280000pt;}
.ws3b{word-spacing:-1.024000pt;}
.wsd9{word-spacing:-1.013333pt;}
.ws9d{word-spacing:-0.832000pt;}
.wsbf{word-spacing:-0.704000pt;}
.ws82{word-spacing:-0.640000pt;}
.wse9{word-spacing:-0.586667pt;}
.ws4e{word-spacing:-0.576000pt;}
.ws62{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.480000pt;}
.wsa4{word-spacing:-0.448000pt;}
.ws14{word-spacing:-0.426667pt;}
.wsc{word-spacing:-0.373333pt;}
.ws12{word-spacing:-0.320000pt;}
.wsda{word-spacing:-0.266667pt;}
.ws25{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws76{word-spacing:-0.106667pt;}
.wsb{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053333pt;}
.ws117{word-spacing:0.058667pt;}
.ws18{word-spacing:0.064000pt;}
.ws50{word-spacing:0.192000pt;}
.wsec{word-spacing:0.213333pt;}
.ws7d{word-spacing:0.256000pt;}
.ws16{word-spacing:0.266667pt;}
.ws2a{word-spacing:0.320000pt;}
.ws11{word-spacing:0.384000pt;}
.ws11a{word-spacing:0.410667pt;}
.wseb{word-spacing:0.426667pt;}
.ws10{word-spacing:0.448000pt;}
.ws119{word-spacing:0.469333pt;}
.wsee{word-spacing:0.480000pt;}
.ws13{word-spacing:0.512000pt;}
.wsf{word-spacing:0.672000pt;}
.ws17{word-spacing:0.704000pt;}
.wsab{word-spacing:0.768000pt;}
.ws1d{word-spacing:0.832000pt;}
.ws7f{word-spacing:0.896000pt;}
.wsef{word-spacing:0.960000pt;}
.ws85{word-spacing:1.088000pt;}
.wsed{word-spacing:1.120000pt;}
.ws86{word-spacing:1.216000pt;}
.wsbb{word-spacing:1.280000pt;}
.ws4a{word-spacing:1.408000pt;}
.ws94{word-spacing:1.472000pt;}
.ws20{word-spacing:1.536000pt;}
.ws47{word-spacing:1.600000pt;}
.ws46{word-spacing:1.920000pt;}
.ws32{word-spacing:2.176000pt;}
.ws10a{word-spacing:2.186667pt;}
.wsb1{word-spacing:2.240000pt;}
.ws1a{word-spacing:2.496000pt;}
.wsa5{word-spacing:2.560000pt;}
.wsf3{word-spacing:2.613333pt;}
.ws52{word-spacing:2.624000pt;}
.wsf7{word-spacing:2.773333pt;}
.wsf4{word-spacing:2.986667pt;}
.ws8d{word-spacing:3.008000pt;}
.ws118{word-spacing:3.168000pt;}
.ws26{word-spacing:3.200000pt;}
.wsf5{word-spacing:3.253333pt;}
.ws41{word-spacing:3.264000pt;}
.wsa8{word-spacing:3.456000pt;}
.ws2b{word-spacing:3.520000pt;}
.ws69{word-spacing:3.584000pt;}
.wsf0{word-spacing:3.680000pt;}
.ws59{word-spacing:3.712000pt;}
.wse4{word-spacing:3.840000pt;}
.wsa1{word-spacing:3.968000pt;}
.wsbc{word-spacing:4.032000pt;}
.wse5{word-spacing:4.053333pt;}
.wsf6{word-spacing:4.160000pt;}
.ws88{word-spacing:4.288000pt;}
.wsea{word-spacing:4.320000pt;}
.ws5d{word-spacing:4.608000pt;}
.ws40{word-spacing:4.672000pt;}
.ws2f{word-spacing:4.736000pt;}
.wse1{word-spacing:4.746667pt;}
.wse3{word-spacing:4.853333pt;}
.wse2{word-spacing:4.906667pt;}
.ws79{word-spacing:4.992000pt;}
.ws9c{word-spacing:5.120000pt;}
.ws1f{word-spacing:5.376000pt;}
.ws2e{word-spacing:5.568000pt;}
.ws87{word-spacing:5.696000pt;}
.ws1e{word-spacing:5.824000pt;}
.wsdd{word-spacing:5.973333pt;}
.wsb0{word-spacing:6.208000pt;}
.ws43{word-spacing:6.464000pt;}
.ws5a{word-spacing:6.784000pt;}
.ws10d{word-spacing:6.880000pt;}
.ws44{word-spacing:6.912000pt;}
.ws91{word-spacing:7.232000pt;}
.ws90{word-spacing:7.488000pt;}
.wse7{word-spacing:7.520000pt;}
.wsa0{word-spacing:7.680000pt;}
.wsae{word-spacing:7.808000pt;}
.ws5b{word-spacing:7.936000pt;}
.ws71{word-spacing:8.576000pt;}
.wsd7{word-spacing:8.586667pt;}
.ws7c{word-spacing:8.832000pt;}
.ws74{word-spacing:8.896000pt;}
.ws7b{word-spacing:9.024000pt;}
.ws34{word-spacing:9.344000pt;}
.wsbe{word-spacing:9.408000pt;}
.ws35{word-spacing:9.664000pt;}
.ws7a{word-spacing:9.728000pt;}
.ws93{word-spacing:9.856000pt;}
.ws83{word-spacing:9.984000pt;}
.wsa6{word-spacing:10.112000pt;}
.wsf8{word-spacing:10.240000pt;}
.ws72{word-spacing:10.432000pt;}
.ws6c{word-spacing:10.688000pt;}
.ws60{word-spacing:11.008000pt;}
.ws61{word-spacing:11.072000pt;}
.ws1c{word-spacing:11.136000pt;}
.wsaf{word-spacing:11.520000pt;}
.ws4b{word-spacing:11.776000pt;}
.ws80{word-spacing:11.968000pt;}
.ws95{word-spacing:12.096000pt;}
.ws3a{word-spacing:12.224000pt;}
.ws115{word-spacing:12.730667pt;}
.ws2c{word-spacing:12.864000pt;}
.wsc7{word-spacing:12.992000pt;}
.ws75{word-spacing:13.056000pt;}
.ws114{word-spacing:13.200000pt;}
.wsc1{word-spacing:13.248000pt;}
.ws5e{word-spacing:13.312000pt;}
.ws116{word-spacing:13.434667pt;}
.wsca{word-spacing:13.568000pt;}
.ws6e{word-spacing:13.632000pt;}
.ws65{word-spacing:13.888000pt;}
.wsf2{word-spacing:13.920000pt;}
.ws6d{word-spacing:14.208000pt;}
.ws5c{word-spacing:14.336000pt;}
.ws103{word-spacing:14.453333pt;}
.ws84{word-spacing:14.592000pt;}
.ws105{word-spacing:14.826667pt;}
.ws104{word-spacing:14.933333pt;}
.ws33{word-spacing:14.976000pt;}
.ws102{word-spacing:14.986667pt;}
.wsc5{word-spacing:15.424000pt;}
.ws42{word-spacing:15.808000pt;}
.ws45{word-spacing:16.064000pt;}
.ws63{word-spacing:16.256000pt;}
.wsb2{word-spacing:16.384000pt;}
.ws64{word-spacing:16.512000pt;}
.ws73{word-spacing:16.576000pt;}
.ws31{word-spacing:17.088000pt;}
.ws30{word-spacing:17.280000pt;}
.wsd6{word-spacing:17.408000pt;}
.ws70{word-spacing:17.536000pt;}
.ws8f{word-spacing:17.920000pt;}
.ws8a{word-spacing:18.176000pt;}
.wsc0{word-spacing:18.368000pt;}
.wscb{word-spacing:18.496000pt;}
.ws37{word-spacing:18.624000pt;}
.ws53{word-spacing:19.008000pt;}
.ws58{word-spacing:19.264000pt;}
.ws56{word-spacing:19.328000pt;}
.ws57{word-spacing:19.712000pt;}
.ws97{word-spacing:19.904000pt;}
.ws96{word-spacing:20.032000pt;}
.ws49{word-spacing:20.288000pt;}
.wsac{word-spacing:20.608000pt;}
.ws24{word-spacing:20.736000pt;}
.wsa2{word-spacing:20.992000pt;}
.ws99{word-spacing:21.120000pt;}
.ws98{word-spacing:21.376000pt;}
.wsc4{word-spacing:21.504000pt;}
.ws9a{word-spacing:21.824000pt;}
.ws8b{word-spacing:22.464000pt;}
.wsaa{word-spacing:22.592000pt;}
.wsa9{word-spacing:22.656000pt;}
.wsc2{word-spacing:22.912000pt;}
.ws9e{word-spacing:23.168000pt;}
.ws51{word-spacing:23.488000pt;}
.wse0{word-spacing:23.520000pt;}
.ws6f{word-spacing:23.680000pt;}
.ws19{word-spacing:23.936000pt;}
.wsbd{word-spacing:24.576000pt;}
.wsf1{word-spacing:25.013333pt;}
.ws89{word-spacing:25.024000pt;}
.wsb9{word-spacing:26.112000pt;}
.ws10e{word-spacing:26.240000pt;}
.ws66{word-spacing:26.432000pt;}
.ws110{word-spacing:26.560000pt;}
.ws10f{word-spacing:26.666667pt;}
.wscc{word-spacing:26.880000pt;}
.ws67{word-spacing:27.136000pt;}
.wsdc{word-spacing:27.786667pt;}
.wsc9{word-spacing:28.224000pt;}
.ws1b{word-spacing:28.864000pt;}
.ws5f{word-spacing:29.312000pt;}
.ws38{word-spacing:29.632000pt;}
.wsba{word-spacing:29.888000pt;}
.ws39{word-spacing:30.208000pt;}
.wsb5{word-spacing:30.336000pt;}
.wsad{word-spacing:30.976000pt;}
.ws92{word-spacing:31.296000pt;}
.ws9b{word-spacing:31.424000pt;}
.ws8c{word-spacing:32.512000pt;}
.wsa3{word-spacing:35.264000pt;}
.ws23{word-spacing:36.480000pt;}
.ws21{word-spacing:36.608000pt;}
.ws22{word-spacing:36.736000pt;}
.wsc3{word-spacing:41.024000pt;}
.wsb6{word-spacing:42.880000pt;}
.wsb8{word-spacing:43.008000pt;}
.wsb7{word-spacing:43.136000pt;}
.ws54{word-spacing:43.776000pt;}
.ws106{word-spacing:66.773333pt;}
.ws107{word-spacing:67.093333pt;}
.ws111{word-spacing:68.906667pt;}
.ws113{word-spacing:69.013333pt;}
.ws112{word-spacing:69.386667pt;}
.ws10b{word-spacing:112.053333pt;}
._1d{margin-left:-7.424000pt;}
._11{margin-left:-6.455467pt;}
._7{margin-left:-5.100800pt;}
._6{margin-left:-3.718400pt;}
._5{margin-left:-2.107733pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._9{width:2.033067pt;}
._13{width:3.673600pt;}
._16{width:5.491200pt;}
._1f{width:6.385067pt;}
._1e{width:8.494933pt;}
._17{width:11.968000pt;}
._18{width:13.538133pt;}
._14{width:14.660267pt;}
._8{width:16.083200pt;}
._15{width:18.585600pt;}
._a{width:19.767467pt;}
._b{width:20.800000pt;}
._c{width:23.268267pt;}
._d{width:24.270933pt;}
._e{width:28.106667pt;}
._f{width:29.568000pt;}
._10{width:31.153067pt;}
._12{width:32.373333pt;}
._22{width:69.013333pt;}
._1c{width:115.940267pt;}
._1b{width:142.784000pt;}
._20{width:154.624000pt;}
._21{width:156.416000pt;}
._3{width:680.800000pt;}
._1a{width:719.520000pt;}
._4{width:730.293333pt;}
._2{width:893.706667pt;}
._19{width:1012.960000pt;}
.fs8{font-size:10.666667pt;}
.fs7{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.333333pt;}
.yb2{bottom:21.866667pt;}
.y4{bottom:60.266667pt;}
.yb1{bottom:82.400000pt;}
.yb3{bottom:86.133333pt;}
.y160{bottom:86.421333pt;}
.y8f{bottom:86.426667pt;}
.y65{bottom:86.469333pt;}
.y174{bottom:93.338667pt;}
.yf7{bottom:93.354667pt;}
.y123{bottom:93.365333pt;}
.yc3{bottom:93.418667pt;}
.y18e{bottom:100.272000pt;}
.y1a3{bottom:100.277333pt;}
.ydd{bottom:100.314667pt;}
.y35{bottom:102.154667pt;}
.y15f{bottom:107.221333pt;}
.y8e{bottom:107.226667pt;}
.y64{bottom:107.269333pt;}
.y173{bottom:113.866667pt;}
.yf6{bottom:113.882667pt;}
.y122{bottom:113.893333pt;}
.yc2{bottom:113.946667pt;}
.yb0{bottom:120.533333pt;}
.y18d{bottom:120.800000pt;}
.y1a2{bottom:120.805333pt;}
.ydc{bottom:120.842667pt;}
.y142{bottom:120.853333pt;}
.y34{bottom:122.954667pt;}
.y1d4{bottom:126.933333pt;}
.y15e{bottom:127.749333pt;}
.y8d{bottom:127.754667pt;}
.y63{bottom:127.797333pt;}
.y172{bottom:134.666667pt;}
.yf5{bottom:134.682667pt;}
.y121{bottom:134.693333pt;}
.yc1{bottom:134.746667pt;}
.y18c{bottom:141.600000pt;}
.y1a1{bottom:141.605333pt;}
.ydb{bottom:141.642667pt;}
.y141{bottom:141.653333pt;}
.y33{bottom:143.482667pt;}
.y1d3{bottom:144.266667pt;}
.y15d{bottom:148.549333pt;}
.y8c{bottom:148.554667pt;}
.y62{bottom:148.597333pt;}
.y171{bottom:153.866667pt;}
.yf4{bottom:155.482667pt;}
.y120{bottom:155.493333pt;}
.yc0{bottom:155.546667pt;}
.y18b{bottom:160.800000pt;}
.y1d2{bottom:161.600000pt;}
.y1a0{bottom:162.405333pt;}
.yda{bottom:162.442667pt;}
.y140{bottom:162.453333pt;}
.y32{bottom:164.282667pt;}
.y15c{bottom:169.077333pt;}
.y8b{bottom:169.082667pt;}
.y170{bottom:169.088000pt;}
.y61{bottom:169.125333pt;}
.yf3{bottom:176.010667pt;}
.y11f{bottom:176.021333pt;}
.ybf{bottom:176.074667pt;}
.y1d1{bottom:178.666667pt;}
.y19f{bottom:182.933333pt;}
.yd9{bottom:182.970667pt;}
.y13f{bottom:182.981333pt;}
.y31{bottom:185.082667pt;}
.y15b{bottom:189.877333pt;}
.y8a{bottom:189.882667pt;}
.y16f{bottom:189.888000pt;}
.y60{bottom:189.925333pt;}
.y1d0{bottom:196.000000pt;}
.yf2{bottom:196.810667pt;}
.y11e{bottom:196.821333pt;}
.ybe{bottom:196.874667pt;}
.y19e{bottom:202.133333pt;}
.yd8{bottom:203.770667pt;}
.y13e{bottom:203.781333pt;}
.y30{bottom:205.610667pt;}
.y15a{bottom:210.677333pt;}
.y89{bottom:210.682667pt;}
.y16e{bottom:210.688000pt;}
.y5f{bottom:210.725333pt;}
.y1cf{bottom:213.333333pt;}
.yf1{bottom:217.610667pt;}
.y11d{bottom:217.621333pt;}
.ybd{bottom:217.674667pt;}
.yd7{bottom:224.570667pt;}
.y13d{bottom:224.581333pt;}
.y2f{bottom:226.410667pt;}
.y1ce{bottom:230.400000pt;}
.y159{bottom:231.205333pt;}
.y88{bottom:231.210667pt;}
.y16d{bottom:231.216000pt;}
.y5e{bottom:231.253333pt;}
.yf0{bottom:238.138667pt;}
.y11c{bottom:238.149333pt;}
.ybc{bottom:238.202667pt;}
.yd6{bottom:245.098667pt;}
.y13c{bottom:245.109333pt;}
.y2e{bottom:246.938667pt;}
.y1cd{bottom:247.733333pt;}
.y158{bottom:252.005333pt;}
.y87{bottom:252.010667pt;}
.y16c{bottom:252.016000pt;}
.y5d{bottom:252.053333pt;}
.yef{bottom:258.938667pt;}
.y11b{bottom:258.949333pt;}
.ybb{bottom:259.002667pt;}
.y1cc{bottom:265.066667pt;}
.yd5{bottom:265.898667pt;}
.y13b{bottom:265.909333pt;}
.y2d{bottom:267.738667pt;}
.y157{bottom:272.805333pt;}
.y86{bottom:272.810667pt;}
.y16b{bottom:272.816000pt;}
.y5c{bottom:272.853333pt;}
.y1ff{bottom:273.066667pt;}
.yee{bottom:279.738667pt;}
.y11a{bottom:279.749333pt;}
.yba{bottom:279.802667pt;}
.y1cb{bottom:282.400000pt;}
.yd4{bottom:286.426667pt;}
.y13a{bottom:286.437333pt;}
.y2c{bottom:288.538667pt;}
.y1fe{bottom:292.266667pt;}
.y156{bottom:293.333333pt;}
.y85{bottom:293.338667pt;}
.y16a{bottom:293.344000pt;}
.y5b{bottom:293.381333pt;}
.y1ca{bottom:299.466667pt;}
.yed{bottom:300.266667pt;}
.y119{bottom:300.277333pt;}
.yb9{bottom:300.330667pt;}
.yaf{bottom:304.266667pt;}
.yd3{bottom:307.226667pt;}
.y139{bottom:307.237333pt;}
.y2b{bottom:309.066667pt;}
.y1fd{bottom:311.200000pt;}
.y155{bottom:312.533333pt;}
.y84{bottom:314.138667pt;}
.y169{bottom:314.144000pt;}
.yae{bottom:314.154667pt;}
.y5a{bottom:314.181333pt;}
.y1c9{bottom:316.800000pt;}
.yec{bottom:319.466667pt;}
.y18a{bottom:321.066667pt;}
.y118{bottom:321.077333pt;}
.yb8{bottom:321.130667pt;}
.yd2{bottom:328.026667pt;}
.y138{bottom:328.037333pt;}
.y154{bottom:328.058667pt;}
.y2a{bottom:328.266667pt;}
.y1fc{bottom:330.133333pt;}
.y1c8{bottom:334.133333pt;}
.y83{bottom:334.938667pt;}
.y168{bottom:334.944000pt;}
.yad{bottom:334.954667pt;}
.y59{bottom:334.981333pt;}
.y189{bottom:340.000000pt;}
.y117{bottom:341.605333pt;}
.yb7{bottom:341.658667pt;}
.y29{bottom:343.738667pt;}
.y1fb{bottom:348.000000pt;}
.yd1{bottom:348.554667pt;}
.y137{bottom:348.565333pt;}
.y153{bottom:348.586667pt;}
.y1c7{bottom:351.200000pt;}
.y82{bottom:355.466667pt;}
.y167{bottom:355.472000pt;}
.yac{bottom:355.482667pt;}
.y58{bottom:355.509333pt;}
.y116{bottom:362.405333pt;}
.yb6{bottom:362.458667pt;}
.y1fa{bottom:362.930667pt;}
.y28{bottom:364.266667pt;}
.y1c6{bottom:368.533333pt;}
.yd0{bottom:369.354667pt;}
.y136{bottom:369.365333pt;}
.y152{bottom:369.386667pt;}
.y81{bottom:376.266667pt;}
.y166{bottom:376.272000pt;}
.yab{bottom:376.282667pt;}
.y57{bottom:376.309333pt;}
.y1f9{bottom:381.865333pt;}
.y115{bottom:383.205333pt;}
.yb5{bottom:383.258667pt;}
.y27{bottom:383.466667pt;}
.y1c5{bottom:385.866667pt;}
.ycf{bottom:390.154667pt;}
.y135{bottom:390.165333pt;}
.y151{bottom:390.186667pt;}
.y80{bottom:397.066667pt;}
.y165{bottom:397.072000pt;}
.yaa{bottom:397.082667pt;}
.y56{bottom:397.109333pt;}
.y26{bottom:398.954667pt;}
.y1f8{bottom:400.800000pt;}
.y1c4{bottom:402.933333pt;}
.y114{bottom:403.733333pt;}
.yb4{bottom:403.786667pt;}
.yce{bottom:410.682667pt;}
.y134{bottom:410.693333pt;}
.y150{bottom:410.714667pt;}
.y7f{bottom:414.666667pt;}
.y188{bottom:416.000000pt;}
.y164{bottom:417.600000pt;}
.ya9{bottom:417.610667pt;}
.y55{bottom:417.637333pt;}
.y25{bottom:419.754667pt;}
.y1c3{bottom:420.266667pt;}
.y1f7{bottom:423.733333pt;}
.y113{bottom:424.533333pt;}
.y7e{bottom:424.586667pt;}
.ycd{bottom:431.482667pt;}
.y133{bottom:431.493333pt;}
.y187{bottom:431.498667pt;}
.y14f{bottom:431.514667pt;}
.y163{bottom:436.800000pt;}
.y1c2{bottom:437.600000pt;}
.ya8{bottom:438.410667pt;}
.y54{bottom:438.437333pt;}
.y24{bottom:440.282667pt;}
.y112{bottom:445.333333pt;}
.y7d{bottom:445.386667pt;}
.y19d{bottom:452.277333pt;}
.ycc{bottom:452.282667pt;}
.y132{bottom:452.293333pt;}
.y186{bottom:452.298667pt;}
.y14e{bottom:452.314667pt;}
.y1c1{bottom:454.933333pt;}
.ya7{bottom:458.938667pt;}
.y53{bottom:458.965333pt;}
.y23{bottom:461.082667pt;}
.y1f6{bottom:462.132000pt;}
.y111{bottom:464.266667pt;}
.y7c{bottom:465.914667pt;}
.y1c0{bottom:472.000000pt;}
.y19c{bottom:472.805333pt;}
.ycb{bottom:472.810667pt;}
.y131{bottom:472.821333pt;}
.y185{bottom:472.826667pt;}
.y14d{bottom:472.842667pt;}
.ya6{bottom:479.738667pt;}
.y110{bottom:479.744000pt;}
.y52{bottom:479.765333pt;}
.y1f5{bottom:481.066667pt;}
.y22{bottom:481.610667pt;}
.y7b{bottom:486.714667pt;}
.y1bf{bottom:489.333333pt;}
.y19b{bottom:493.605333pt;}
.yca{bottom:493.610667pt;}
.y130{bottom:493.621333pt;}
.y184{bottom:493.626667pt;}
.y14c{bottom:493.642667pt;}
.y1f4{bottom:498.933333pt;}
.ya5{bottom:500.538667pt;}
.y10f{bottom:500.544000pt;}
.y51{bottom:500.565333pt;}
.y21{bottom:502.410667pt;}
.y1be{bottom:506.666667pt;}
.y7a{bottom:507.514667pt;}
.y1f3{bottom:513.333333pt;}
.y19a{bottom:514.133333pt;}
.yc9{bottom:514.138667pt;}
.y12f{bottom:514.149333pt;}
.y183{bottom:514.154667pt;}
.y14b{bottom:514.170667pt;}
.ya4{bottom:521.066667pt;}
.y10e{bottom:521.072000pt;}
.y50{bottom:521.093333pt;}
.y20{bottom:523.210667pt;}
.y1bd{bottom:523.733333pt;}
.y79{bottom:528.042667pt;}
.y1f2{bottom:530.666667pt;}
.y199{bottom:534.933333pt;}
.yc8{bottom:534.938667pt;}
.y12e{bottom:534.949333pt;}
.y182{bottom:534.954667pt;}
.y14a{bottom:534.970667pt;}
.y1bc{bottom:541.066667pt;}
.ya3{bottom:541.866667pt;}
.y10d{bottom:541.872000pt;}
.y4f{bottom:541.893333pt;}
.y1f{bottom:543.738667pt;}
.y1f1{bottom:548.000000pt;}
.y78{bottom:548.842667pt;}
.y198{bottom:555.733333pt;}
.yc7{bottom:555.738667pt;}
.y12d{bottom:555.749333pt;}
.y181{bottom:555.754667pt;}
.y149{bottom:555.770667pt;}
.y1bb{bottom:558.400000pt;}
.ya2{bottom:558.933333pt;}
.yeb{bottom:561.066667pt;}
.y10c{bottom:562.672000pt;}
.y4e{bottom:562.693333pt;}
.y1f0{bottom:564.533333pt;}
.y1e{bottom:564.538667pt;}
.ya1{bottom:566.165333pt;}
.y77{bottom:569.642667pt;}
.y197{bottom:574.666667pt;}
.y1ba{bottom:575.466667pt;}
.yc6{bottom:576.266667pt;}
.y12c{bottom:576.277333pt;}
.y180{bottom:576.282667pt;}
.yea{bottom:576.288000pt;}
.y148{bottom:576.298667pt;}
.y1ef{bottom:578.933333pt;}
.y10b{bottom:583.200000pt;}
.y4d{bottom:583.221333pt;}
.y1d{bottom:585.338667pt;}
.ya0{bottom:586.693333pt;}
.y196{bottom:590.144000pt;}
.y76{bottom:590.170667pt;}
.y1b9{bottom:592.800000pt;}
.y1ee{bottom:596.266667pt;}
.yc5{bottom:597.066667pt;}
.y12b{bottom:597.077333pt;}
.y17f{bottom:597.082667pt;}
.ye9{bottom:597.088000pt;}
.y147{bottom:597.098667pt;}
.y10a{bottom:604.000000pt;}
.y4c{bottom:604.021333pt;}
.y1c{bottom:605.866667pt;}
.y9f{bottom:607.493333pt;}
.y1b8{bottom:610.133333pt;}
.y195{bottom:610.944000pt;}
.y75{bottom:610.970667pt;}
.y1ed{bottom:613.600000pt;}
.yc4{bottom:616.266667pt;}
.y12a{bottom:617.877333pt;}
.y17e{bottom:617.882667pt;}
.ye8{bottom:617.888000pt;}
.y146{bottom:617.898667pt;}
.y109{bottom:624.800000pt;}
.y4b{bottom:624.821333pt;}
.y1b{bottom:626.666667pt;}
.y1b7{bottom:627.466667pt;}
.y9e{bottom:628.293333pt;}
.y1ec{bottom:630.666667pt;}
.y194{bottom:631.472000pt;}
.y74{bottom:631.498667pt;}
.y129{bottom:638.405333pt;}
.y17d{bottom:638.410667pt;}
.ye7{bottom:638.416000pt;}
.y145{bottom:638.426667pt;}
.y108{bottom:643.733333pt;}
.y1b6{bottom:644.533333pt;}
.y4a{bottom:645.349333pt;}
.y1a{bottom:647.466667pt;}
.y1eb{bottom:648.000000pt;}
.y9d{bottom:648.821333pt;}
.y193{bottom:652.272000pt;}
.y73{bottom:652.298667pt;}
.y128{bottom:659.205333pt;}
.y17c{bottom:659.210667pt;}
.ye6{bottom:659.216000pt;}
.y107{bottom:659.226667pt;}
.y1b5{bottom:661.866667pt;}
.y1ea{bottom:665.333333pt;}
.y49{bottom:666.149333pt;}
.y19{bottom:668.000000pt;}
.y9c{bottom:669.621333pt;}
.y192{bottom:673.072000pt;}
.y72{bottom:673.098667pt;}
.y1b4{bottom:679.200000pt;}
.y127{bottom:680.005333pt;}
.y17b{bottom:680.010667pt;}
.ye5{bottom:680.016000pt;}
.y106{bottom:680.026667pt;}
.y1e9{bottom:682.666667pt;}
.y48{bottom:686.677333pt;}
.y18{bottom:687.200000pt;}
.y9b{bottom:690.149333pt;}
.y191{bottom:693.600000pt;}
.y71{bottom:693.626667pt;}
.y1b3{bottom:696.266667pt;}
.y1e8{bottom:699.733333pt;}
.y126{bottom:700.533333pt;}
.y17a{bottom:700.538667pt;}
.ye4{bottom:700.544000pt;}
.y105{bottom:700.554667pt;}
.y17{bottom:701.866667pt;}
.y47{bottom:707.477333pt;}
.y9a{bottom:710.949333pt;}
.y1b2{bottom:713.600000pt;}
.y190{bottom:714.400000pt;}
.y70{bottom:714.426667pt;}
.y1e7{bottom:717.066667pt;}
.y16{bottom:718.933333pt;}
.y125{bottom:721.333333pt;}
.y179{bottom:721.338667pt;}
.ye3{bottom:721.344000pt;}
.y104{bottom:721.354667pt;}
.y46{bottom:728.277333pt;}
.y1b1{bottom:730.933333pt;}
.y99{bottom:731.749333pt;}
.y18f{bottom:733.600000pt;}
.y1e6{bottom:734.400000pt;}
.y6f{bottom:735.226667pt;}
.y15{bottom:735.466667pt;}
.y124{bottom:740.533333pt;}
.y162{bottom:742.133333pt;}
.y178{bottom:742.138667pt;}
.ye2{bottom:742.144000pt;}
.y103{bottom:742.154667pt;}
.y1b0{bottom:748.000000pt;}
.y45{bottom:748.805333pt;}
.y14{bottom:750.133333pt;}
.y1e5{bottom:751.466667pt;}
.y98{bottom:752.277333pt;}
.y6e{bottom:755.754667pt;}
.y161{bottom:761.066667pt;}
.y177{bottom:762.666667pt;}
.ye1{bottom:762.672000pt;}
.y102{bottom:762.682667pt;}
.y1af{bottom:765.333333pt;}
.y13{bottom:768.533333pt;}
.y1e4{bottom:768.800000pt;}
.y44{bottom:769.605333pt;}
.y97{bottom:773.077333pt;}
.y6d{bottom:776.554667pt;}
.y1ae{bottom:782.666667pt;}
.y176{bottom:783.466667pt;}
.ye0{bottom:783.472000pt;}
.y101{bottom:783.482667pt;}
.y1e3{bottom:786.133333pt;}
.y12{bottom:787.200000pt;}
.y43{bottom:790.405333pt;}
.y96{bottom:793.877333pt;}
.y6c{bottom:797.354667pt;}
.y1ad{bottom:800.000000pt;}
.y175{bottom:802.400000pt;}
.y1e2{bottom:803.200000pt;}
.ydf{bottom:804.000000pt;}
.y100{bottom:804.010667pt;}
.y11{bottom:805.333333pt;}
.y42{bottom:810.933333pt;}
.y95{bottom:814.405333pt;}
.y1ac{bottom:817.066667pt;}
.y6b{bottom:817.882667pt;}
.y1e1{bottom:820.533333pt;}
.yde{bottom:823.200000pt;}
.yff{bottom:824.810667pt;}
.y10{bottom:826.133333pt;}
.y41{bottom:831.733333pt;}
.y1ab{bottom:834.400000pt;}
.y94{bottom:835.205333pt;}
.y1e0{bottom:837.866667pt;}
.y6a{bottom:838.682667pt;}
.yfe{bottom:845.610667pt;}
.yf{bottom:846.666667pt;}
.y1aa{bottom:851.733333pt;}
.y40{bottom:852.533333pt;}
.y1df{bottom:855.200000pt;}
.y93{bottom:856.005333pt;}
.y69{bottom:859.210667pt;}
.yfd{bottom:866.138667pt;}
.ye{bottom:867.994667pt;}
.y1a9{bottom:868.800000pt;}
.y3f{bottom:871.466667pt;}
.y1de{bottom:872.266667pt;}
.y92{bottom:876.533333pt;}
.y68{bottom:880.010667pt;}
.y1a8{bottom:886.133333pt;}
.y3e{bottom:886.933333pt;}
.yfc{bottom:886.938667pt;}
.y1dd{bottom:889.600000pt;}
.yd{bottom:892.261333pt;}
.y91{bottom:897.333333pt;}
.y67{bottom:900.810667pt;}
.y1a7{bottom:903.466667pt;}
.y1dc{bottom:906.933333pt;}
.y3d{bottom:907.733333pt;}
.yfb{bottom:907.738667pt;}
.y90{bottom:914.133333pt;}
.yc{bottom:916.266667pt;}
.y1a6{bottom:920.533333pt;}
.y66{bottom:921.338667pt;}
.y1db{bottom:924.000000pt;}
.y3c{bottom:926.666667pt;}
.yfa{bottom:928.266667pt;}
.y1a5{bottom:937.866667pt;}
.yb{bottom:940.533333pt;}
.y1da{bottom:941.333333pt;}
.y3b{bottom:942.138667pt;}
.yf9{bottom:949.066667pt;}
.y1a4{bottom:954.400000pt;}
.y1d9{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y3a{bottom:962.938667pt;}
.yf8{bottom:968.266667pt;}
.y144{bottom:969.866667pt;}
.y1d8{bottom:975.733333pt;}
.y6{bottom:980.800000pt;}
.y39{bottom:983.466667pt;}
.y143{bottom:988.800000pt;}
.y1d7{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y38{bottom:1004.266667pt;}
.y1d6{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y37{bottom:1025.066667pt;}
.y1d5{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y36{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h12{height:9.280000pt;}
.h10{height:18.560000pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.h4{height:27.840000pt;}
.h14{height:30.464000pt;}
.hd{height:37.120000pt;}
.h15{height:38.132000pt;}
.h3{height:39.040000pt;}
.h7{height:42.133333pt;}
.h19{height:42.944000pt;}
.h2{height:43.040000pt;}
.h11{height:45.696000pt;}
.hc{height:46.400000pt;}
.he{height:46.848000pt;}
.h18{height:51.040000pt;}
.h6{height:51.648000pt;}
.h16{height:55.625000pt;}
.hb{height:55.680000pt;}
.ha{height:60.256000pt;}
.h17{height:62.812500pt;}
.h9{height:64.960000pt;}
.hf{height:66.750000pt;}
.h13{height:182.133333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w2{width:425.066667pt;}
.w5{width:630.400000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x3{left:70.933333pt;}
.x1{left:81.333333pt;}
.x14{left:85.066667pt;}
.x9{left:92.272000pt;}
.x19{left:100.266667pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x13{left:128.533333pt;}
.x1a{left:153.866667pt;}
.x11{left:156.789333pt;}
.xa{left:178.138667pt;}
.x12{left:185.349333pt;}
.xc{left:221.866667pt;}
.x18{left:223.205333pt;}
.xb{left:241.866667pt;}
.xe{left:251.466667pt;}
.x17{left:272.533333pt;}
.xd{left:292.000000pt;}
.xf{left:332.533333pt;}
.x2{left:396.800000pt;}
.x10{left:399.466667pt;}
.x15{left:420.533333pt;}
.x5{left:496.000000pt;}
.x16{left:538.133333pt;}
.x7{left:609.600000pt;}
}




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